Bonjour à tous,
Voila j'ai un petit souci avec mon Joomla, j'ai dupliqué mon site sur un autre répertoire, attribué une nouvelle base de donnée à se nouveau site (modifier les fichiers de config)... Tout fonctionne, le site, le panneau d'administration. Mais j'ai un souci lorsque je veux modifier un article depuis le site (et non via le panneau d'administration, par là ca fonctionne), j'ai l'erreur suivante qui s'affiche, je ne comprends pas bien d'ou vient le problème et le résoudre:
Si quelqu'un pourrait m'aider?
Merci
Voila j'ai un petit souci avec mon Joomla, j'ai dupliqué mon site sur un autre répertoire, attribué une nouvelle base de donnée à se nouveau site (modifier les fichiers de config)... Tout fonctionne, le site, le panneau d'administration. Mais j'ai un souci lorsque je veux modifier un article depuis le site (et non via le panneau d'administration, par là ca fonctionne), j'ai l'erreur suivante qui s'affiche, je ne comprends pas bien d'ou vient le problème et le résoudre:
Code:
'; jInsertEditorText(tag, 'jform_articletext'); SqueezeBox.close(); } window.addEvent('domready', function() { SqueezeBox.initialize({}); SqueezeBox.assign($$('a.modal'), { parse: 'rel' }); }); function jSelectArticle(id, title, catid, object, link, lang) { var hreflang = ''; if (lang !== '') { var hreflang = ' hreflang = "' + lang + '"'; } var tag = '' + title + ''; jInsertEditorText(tag, 'jform_articletext'); SqueezeBox.close(); } function insertReadmore(editor) { var content = tinyMCE.get('jform_articletext').getContent(); if (content.match(//i)) { alert('Un lien \'Lire la suite...\' a déjà été inséré dans ce contenu, un seul est possible. Utiliser le \'Saut de page\' pour générer une pagination.'); return false; } else { jInsertEditorText(' ', editor); } } window.addEvent('domready', function() { SqueezeBox.initialize({}); SqueezeBox.assign($$('a.modal-button'), { parse: 'rel' }); }); jQuery(document).ready(function (){ jQuery('#jform_tags').chosen({ disable_search_threshold : 10, allow_single_deselect : true }); }); (function($){ $(document).ready(function () { $('#jform_tags').ajaxChosen({ type: 'GET', url: 'http://chapiteauenfete.be/localisation/index.php?option=com_tags&task=tags.searchAjax', dataType: 'json', jsonTermKey: 'like', afterTypeDelay: '500', minTermLength: '3' }, function (data) { var results = []; $.each(data, function (i, val) { results.push({ value: val.value, text: val.text }); }); return results; }); }); })(jQuery); (function($){ $(document).ready(function () { var customTagPrefix = '#new#'; // Method to add tags pressing enter $('#jform_tags_chzn input').keydown(function(event) { // Tag is greater than 3 chars and enter pressed if (this.value.length >= 3 && (event.which === 13 || event.which === 188)) { // Search an highlighted result var highlighted = $('#jform_tags_chzn').find('li.active-result.highlighted').first(); // Add the highlighted option if (event.which === 13 && highlighted.text() !== '') { // Extra check. If we have added a custom tag with this text remove it var customOptionValue = customTagPrefix + highlighted.text(); $('#jform_tags option').filter(function () { return $(this).val() == customOptionValue; }).remove(); // Select the highlighted result var tagOption = $('#jform_tags option').filter(function () { return $(this).html() == highlighted.text(); }); tagOption.attr('selected', 'selected'); } // Add the custom tag option else { var customTag = this.value; // Extra check. Search if the custom tag already exists (typed faster than AJAX ready) var tagOption = $('#jform_tags option').filter(function () { return $(this).html() == customTag; }); if (tagOption.text() !== '') { tagOption.attr('selected', 'selected'); } else { var option = $(
Merci
Commentaire